body {
    margin: 0;
}
a {
    color: #fff;
    text-decoration: none;
}

p {
    font-size: 13px;
    font-weight: 400;
}

#root {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: 100vw;
    min-width: max-content;
    min-height: 100vh;
}

header {
    width: 100%;
    height: 350px;
    background: url('./images/u0.jpg') no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.company-name {
    font-size: 50px;
    color: white;
    display: block;
    padding-left: 190px;
    min-width: fit-content;
}

.content {
    width: 100%;
    height: auto;
    min-height: 400px;
    background: url('./images/text01.png') no-repeat;
    background-position: center;
    background-size: 70% auto;
}

footer {
    width: 100%;
    height: 170px;
    grid-row: 3;
    background-image: url('./images/u51.png');
    display: flex;
    flex-direction: row;
    justify-content: right;
}

footer p {
    color: white;
    padding: 0;
    margin: 0;
}

#contact-block {
    padding-top: 10px;
    padding-right: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gray-text {
    color: #68779E;
}

.gray-text a {
    color: inherit;
}


